home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / network / chat / ircii-2.8he / ircii-2 / help / IGNORE < prev    next >
Encoding:
Text File  |  1993-05-04  |  2.4 KB  |  60 lines

  1. Usage: IGNORE [<nick>] [-|+|^][<message type>]
  2.        IGNORE [<user@host>] [-][<message type>]
  3.  
  4.   The standard form of IGNORE allows you to specify which type of
  5.   messages you wish to ignore from a user.  The message type
  6.   parameter can be one of the following:
  7.     MSGS            All MSGs received
  8.     NOTICES         All NOTICEs received
  9.     PUBLIC          All normal channel conversation
  10.     INVITES         All INVITEs received
  11.     WALLOPS         All WALLOPS received
  12.     NOTES           All NOTEs received
  13.     CTCP            All CTCPs received
  14.     CRAP            Anything else
  15.     ALL             All of the above message types
  16.     NONE            No message types
  17.  
  18.   You can ignore by nickname or by specifying a userid@hostname
  19.   format.  Wildcards may be used in all formats.  You can specify
  20.   multiple types of messages to ignore on the command line.
  21.   Preceeding a type with a - indicates removal of ignoring of
  22.   that type of message.  For example:
  23.     IGNORE BigCheese MSGS INVITES
  24.   ignores MSGs and INVITES from BigCheese.  
  25.     IGNORE *@*.cmu.edu ALL -NOTES
  26.   ignores all types of messages except NOTES from anyone from CMU.
  27.  
  28.   You may also specify a + before any message type to cause messages
  29.   of that type from that user to be displayed with the nickname
  30.   highlighted.  (See SET HIGHLIGHT_CHAR) For example:
  31.     IGNORE *Cheese* +MSGS
  32.   will cause all MSGs from anyone with Cheese in their nickname
  33.   to appear with their nickname highlighted.  
  34.     IGNORE * +PUBLIC +NOTES
  35.   will highlight all PUBLIC messages and NOTES received.  The + has no 
  36.   effect with the user@host name format.
  37.  
  38.   If you specify a ^ before a message type, then messages from the
  39.   matching nicknames will be displayed no matter what.  This allows
  40.   you to exclude certain nicknames from larger matching lists.  For
  41.   example:
  42.     IGNORE * MSG
  43.     IGNORE BigCheese ^MSG
  44.   This will ignore private messages from everyone except BigCheese.
  45.   
  46.   All forms of IGNORE use the - to remove ignore attributes,
  47.   and the type NONE will remove the user from the list
  48.   completely.  
  49.  
  50.   All forms of IGNORE will match against the nickname with the
  51.   most true matching characters.  What this means is if you have:
  52.     IGNORE BigCheese MSGS
  53.     IGNORE * +ALL
  54.   Then MSG's from BigCheese will be ignored, and all other types
  55.   of messages from BigCheese will be unaffected.  All messages
  56.   of all types from any other user will be highlighted.
  57.  
  58. See Also:
  59.   SET HIGHLIGHT_CHAR
  60.